home *** CD-ROM | disk | FTP | other *** search
/ MacFormat UK 160 - Disc 2 / MF_UK_160_2.iso / pc / DiscContent / Trials / oxygen / samples / debugger / Combining stylesheets / sample1.xsl < prev    next >
Encoding:
Extensible Markup Language  |  2005-07-21  |  441 b   |  12 lines

  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!--    Category:    Combining Stylesheets
  3.     Sample from Zvon XSLT tutorial (www.zvon.org)  
  4.     Description:    Imported in other stylesheet. -->
  5. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  6.     <xsl:template match="/*/*">
  7.         <DIV style="color:red">
  8.             <xsl:value-of select="name()"/>
  9.         </DIV>
  10.     </xsl:template>
  11. </xsl:stylesheet>
  12.